@charset "utf-8";
/* CSS Document */

.left-container {
    display: flex;
    align-items: center;
    gap: 10px; /* Space between business and logo */
}
     
header {
           /* background-color: #111112;*/
    background: -webkit-linear-gradient(bottom, #151515, #313131);
    background: -o-linear-gradient(bottom, #151515, #313131);
    background: linear-gradient(to top, #151515, #313131);
          color: #fff;
            padding: 10px 10px 10px 10px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: relative;
        }

        #business {
            width: 150px; /* Adjust the width as needed */
            height: auto;
        }
#logo{
            width: 60px; /* Adjust the width as needed */
            height: auto;	
	        margin-right:10px;
        }

#logo img {   cursor: pointer; /* Cursor style */
    border-radius: 5px; /* Rounded corners */
	margin-right: 0px;

}

    .menu-icon {
            display: none;
            cursor: pointer;
            font-size: 30px;
        }

        .main-nav {
            display: flex;
            flex-direction: row;
        }

        .main-nav a {
            color: #fff;
            text-decoration: none;
            padding: 20px 20px;
            display: block;
        }

        .main-nav a:hover {
            background-color: #3B3B3B;
			 border-radius: 5px;
        }

        @media (max-width: 1080px) {
            .menu-icon {
                display: block;
            }

            .main-nav {
                display: none;
                flex-direction: column;
                background-color: #333;
                position: absolute;
                top: 80px; /* Adjust the top spacing */
                left: 0;
                width: 100%;
                z-index: 1;
            }

            .main-nav.show {
                display: flex;
            }

           .main-nav a {
                text-align: center;
                padding: 10px; /* Adjust padding for better spacing */
            }
        }

        @media (max-width: 480px) {
            header {
                padding: 10px;
            }

            #business {
                width: 120px; /* Adjust the width as needed */
            }
			.main-nav{top:80px;}
        }


/* call button*/
.call-button {
            display: inline-flex;
            align-items: center;
            padding: 10px 15px;
            background-color: #313133;
            color: white;
            font-size: 18px;
            border-radius: 5px;
            text-decoration: none;
            transition: background-color 0.3s;
            margin-right: 10px;
        }
.call-button a{color: white;}

        .call-button:hover {
            background-color: #128C7E;
        }
        .call-button i {
            margin-right: 10px;
        }
        .hidden-number {
            display: none;
        }


.dark-button {
  display: inline-block;
  padding: 10px 20px;
  font-size: 12px;
  font-weight: normal;
  color: #fff; /* White text color */
  background-color: #333; /* Dark background color */
  text-align: center;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}
.dark-button a {color: #fff; text-decoration: none; }
.dark-button:hover {
  background-color: #555; /* Slightly lighter dark color for hover effect */
}

.btn-width {width:200px; }
.btn-width-google {width:400px; }

.button-container {
            display: flex;
            gap: 10px; /* Space between buttons */
        }
/* Button refresh mod */

/* Styles for the button */
.refresh {
     background: -webkit-linear-gradient(bottom, #151515, #313131);
    background: -o-linear-gradient(bottom, #151515, #313131);
    background: linear-gradient(to top, #151515, #313131);
   /* background: linear-gradient(145deg, #151515, #313131);
    background-color: #010403;  dark background color */
    border:thin solid #2F2F2F;  /* No border */
    color: white; /* White text color */
    padding: 5px 15px; /* Padding */
    text-align: center; /* Center text */
    text-decoration: none; /* No text decoration */
    display: inline-block; /* Display as inline block */
    font-size: 16px; /* Font size */
    margin-top: 0px; /* Add margin to the top */
	margin-left: 10px;
	margin-right: 10px;
    cursor: pointer; /* Cursor style */
    border-radius: 5px; /* Rounded corners */
}

/* Hover effect */
.refresh:hover {
    background-color: #030E0A; /* Darker color on hover */
	color: green;
}

